﻿@charset "utf-8";
/* CSS Document */
/* Reset */

/*nav*/
.nav_main {
	width: 100%;
	height: 60px;
/* 	background: #27a8e1; */
	position: relative;
	z-index: 12;
}
.nav {
	position: relative;
	z-index: 12;
}
.nav .first_line {
	position: absolute;
	top: 0;
	left: -1px;
	width: 1px;
	height: 60px;
	background: #27a8e1;
	background-size: 2px 60px;
}
.nav .list {
	width: 102%;
	margin: 0 auto;
	height: 60px;
	line-height: 60px;
	position: relative;
}
.nav li.item {
	float: left;
	width: 120px;
	display: block;
	position: relative;
	z-index: 10;
	font-size: 16px;
	text-align: center;
	border-right: 1px solid #27a8e1;
	-webkit-transition: all .3s ease-in-out 0s;
	-moz-transition: all .3s ease-in-out 0s;
	transition: all .3s ease-in-out 0s;
}
.nav li.item.hover, .nav li.item:hover {
/* 	background-color: #1781bd; */
}
.nav .item a {
	display: block;
	height: 60px;
/* 	color: #fff; */
	font-size: 16px;
}
#nav .subnav {
	position: absolute;
	top: 60px;
	left: 0px;
}
#nav .subnav {
	position: absolute;
	left: 0px;
	filter: progid:DXImageTransform.Microsoft.Shadow(color=#4c91c0, direction=120, strength=5);
	z-index: 199;
	opacity: 0;
	visibility: hidden;
	height: auto;
	overflow: hidden;
	width: 100%;
	transition: all .6s ease 0s;
	transform: translate3d(0, 10px, 0);
	-moz-transform: translate3d(0, 10px, 0);
	-webkit-transform: translate3d(0, 10px, 0);
}
#nav li:hover .subnav {
	opacity: 1;
	visibility: visible;
	transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-webkit-transform: translate3d(0, 0, 0);
}
#nav .subnav .nav1 {
	position: relative;
	display: block;
	width: 120px;
	height: 50px;
	font-size: 14px;
	line-height: 50px;
	text-align: center;
	background: #fff;
	border-top: 1px solid #ddd;
	-webkit-transition: all .3s ease-in-out 0s;
	-moz-transition: all .3s ease-in-out 0s;
	transition: all .3s ease-in-out 0s;
}
#nav .subnav .nav1:first-child {
	border-top: 0;
}
#nav .subnav .nav1:hover {
	background: #1781bd;
}
#nav .subnav .nav1 a {
	padding: 0;
	height: 50px;
	line-height: 50px!important;
	font-size: 14px;
	color: #333;
}
#nav .subnav .nav1:hover a {
	color: #fff;
}